home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / spar372.zip / STANDARD.TXT < prev   
Text File  |  1993-01-11  |  39KB  |  795 lines

  1.  
  2.  
  3.  
  4.      SANA-II Network Device Driver Specification - Rev 1.0 23-Apr-92
  5.      
  6.      (C) Copyright 1992 Commodore-Amiga, Inc. All Rights Reserved
  7.      
  8.      Amiga Networking Group -  Brian Jackson, Dale Larson
  9.                                Greg Miller, Kenneth Dyke
  10.      
  11.      Warning
  12.     
  13.      The information contained herein is subject to change without
  14.      notice. Commodore specifically does not make any endorsement or
  15.      representation with respect to the use, results, or performance of
  16.      the information (including without limitation its capabilities,
  17.      appropriateness, reliability, currentness or availability).
  18.     
  19.      Disclaimer
  20.     
  21.      This information is provided ``As Is'' without warranty of any
  22.      kind, either express or implied.  The entire risk as to the use of
  23.      this information is assumed by the user.  In no event will
  24.      Commodore or its affiliated companies be liable for any damages,
  25.      direct, indirect, incidental, special or consequential, resulting
  26.      from any claim arising out of the information presented herein,
  27.      even if it has been advised of the possibility of such damages. 
  28.      Some states do not allow the exclusion or limitation of such
  29.      implied warranties, so the above limitations may not apply.
  30.  
  31.  
  32.      SANA-II Network Device Driver Specification
  33.      
  34.      The SANA-II Network Device Driver Specification is a standard for
  35.      an Amiga software interface between networking hardware and network
  36.      protocol stacks (or for software tools such as network monitors).
  37.      A network protocol stack is a layer of software that network
  38.      applications use to address particular processes on remote machines
  39.      and to send data reliably in spite of hardware errors. There are
  40.      several common network protocol stacks including TCP/IP, OSI,
  41.      AppleTalk, DECNet and Novell.
  42.      
  43.      SANA-II device drivers are intended to allow multiple network
  44.      protocol stacks running on the same machine to share one network
  45.      device. For example, the TCP/IP and AppleTalk protocol stacks could
  46.      both run on the same machine over one ethernet board. The device
  47.      drivers are also intended to allow network protocol stacks to be
  48.      written in a hardware-independent fashion so that a different
  49.      version of each protocol stack doesn't have to be written for each
  50.      networking hardware device.
  51.      
  52.      The standard does not address the writing of network applications.
  53.      Application writers must not use SANA-II Device Drivers directly.
  54.      Network applications must use the API provided by the network
  55.      protocol software the application supports. There is not an Amiga
  56.      standard network API at the time of this writing, though there is
  57.      the AS225 TCP/IP package and its socket.library as well as other
  58.      (third-party) packages.
  59.      
  60.      To write a SANA-II device driver, you will need to be familiar with
  61.      the specification documents for the hardware you are writing to and
  62.      with the SANA-II Network Device Driver Specification.
  63.  
  64.       
  65.  
  66.  
  67.      To write a network protocol stack which will use SANA-II device
  68.      drivers, you should have general familiarity with common network
  69.      hardware and must be very familiar with the SANA-II Network Device
  70.      Driver Specification as well as the specification for the protocol
  71.      you are developing. If you are creating a new protocol, you must
  72.      obtain a protocol type number for any hardware on which your
  73.      protocol will be used.
  74.  
  75.      Commodore supports the SANA-II specification by providing drivers
  76.      for the Commodore-Amiga network hardware. We have an A2065.device
  77.      (Ethernet) and intend to produce an A2060.device (ARCNET). We also
  78.      try to examine review copies of third-party SANA-II networking
  79.      hardware and software to try to make sure that they interoperate
  80.      with our products.
  81.      
  82.      This standard has undergone several drafts with long periods for
  83.      comment from developers and the Amiga community at large. These
  84.      drafts include a UseNet release which was also distributed on the
  85.      Fish Disks in June, 1991 (as well as published in the '91 DevCon
  86.      notes), and the November 7 Draft for Final Comment and Approval
  87.      distributed via Bix, ADSP and UseNet. There were also several
  88.      intermediate drafts with more limited distribution.
  89.   
  90.      This version of the specification is final. Any new version of the
  91.      standard (i.e., to add new features) is planned to be backward
  92.      compatible. No SANA-II device driver or software utilizing those
  93.      drivers should be written to any earlier version of the
  94.      specification.
  95.      
  96.      Distribution of this version of the standard is unlimited. Anyone
  97.      may write Amiga software which implements a SANA-II network device
  98.      driver or which calls a SANA-II network device driver without
  99.      restriction and may freely distribute such software that they have
  100.      written. Amiga is a registered trademark of Commodore-Amiga, Inc. 
  101.      Ethernet is a trademark of Xerox Corporation. ARCNET is a trademark
  102.      of Datapoint Corporation. DECNet is a trademark of Digital
  103.      Equipment Corporation. AppleTalk is a trademark of Apple Computer,
  104.      Inc.
  105.      
  106.      It is important to try to test each SANA-II device driver against
  107.      all software which uses SANA-II devices. Available example programs
  108.      are valuable in initial testing. The Amiga Networking Group is
  109.      interested in receiving evaluation and/or beta test copies of all
  110.      Amiga networking hardware, SANA-II device drivers and software which
  111.      uses SANA-II devices. However, we make no assurances regarding any
  112.      testing which we may or may not perform with such evaluation copies.
  113.      Contact:
  114.      
  115.          Amiga Networking Group
  116.          Commodore International Services Corporation
  117.          Technology Group
  118.          1200 Wilson Drive
  119.          West Chester, PA 19380, USA
  120.     
  121.  
  122.  
  123.  
  124.      Driver Form
  125.      
  126.      SANA-II device drivers are Amiga Exec device drivers. They use an
  127.      extended IORequest structure and a number of extended commands for
  128.      tallying network statistics, sending broadcasts and multicasts,
  129.      network addressing and the handling of unexpected packets. The
  130.      Amiga ROM Kernel Reference Manual: Devices includes information on
  131.      how to construct an Exec device.
  132.      
  133.      Opening a SANA-II Device
  134.      
  135.      As when opening any other Exec device, on the call to OpenDevice() a
  136.      SANA-II device receives an IORequest structure which the device
  137.      initializes for the opener's use. The opener must copy this
  138.      structure if it desires to use multiple asynchronous requests. The
  139.      SANA-II IORequest is defined as follows:
  140.      
  141.      struct IOSana2Req 
  142.      {
  143.          struct IORequest ios2_Req;
  144.          ULONG ios2_WireError;
  145.          ULONG ios2_PacketType;
  146.          UBYTE ios2_SrcAddr[SANA2_MAX_ADDR_BYTES];
  147.          UBYTE ios2_DstAddr[SANA2_MAX_ADDR_BYTES];
  148.          ULONG ios2_DataLength;
  149.          APTR *ios2_Data;
  150.          APTR *ios2_StatData;
  151.          APTR *ios2_BufferManagement;
  152.      };
  153.      
  154.        ios2_Req              - A standard Exec device IORequest.
  155.        ios2_WireError        - A more specific device code which may be
  156.                                set when there is an io_Error. See 
  157.                                <devices/sana2.h> for the defined 
  158.                                WireErrors.
  159.        ios2_PacketType       - The type of packet requested. See the 
  160.                                section on ``Packet Types''.
  161.        ios2_SrcAddr          - The device fills in this field with the 
  162.                                interface (network hardware) address of 
  163.                                the source of the packet that satisfied 
  164.                                a read command. The bytes used to hold 
  165.                                the address will be left justified but 
  166.                                the bit layout is dependent on the
  167.                                particular type of network.
  168.        ios2_DstAddr          - Before the device user sends a packet, it
  169.                                fills this with the interface destination
  170.                                address of the packet. On receives, the 
  171.                                device fills this with the interface 
  172.                                destination address. Other commands may 
  173.                                use this field differently (see the SANA-II
  174.                                Network Device Driver Autodocs). The 
  175.                                bytes used to hold the address will be 
  176.                                left justified but the bit layout is 
  177.                                dependent on the particular type of network.
  178.   
  179.  
  180.  
  181.  
  182.        ios2_DataLength       - The device user initializes this field with
  183.                                the amount of data available in the Data 
  184.                                buffer before passing the IOSana2Req to 
  185.                                the device. The device fills in this field
  186.                                with the size of the packet data as it was
  187.                                sent on the wire. This does not include 
  188.                                the header and trailer information. 
  189.                                Depending on the network type and protocol
  190.                                type, the driver may have to calculate 
  191.                                this value. This is generally used only 
  192.                                for reads and writes (including broadcast
  193.                                and multicast).
  194.        ios2_Data             - A pointer to some abstract data structure 
  195.                                containing packet data. Drivers may not 
  196.                                directly manipulate or examine anything
  197.                                pointed to by Data! This is generally 
  198.                                used only for reads and writes (including
  199.                                broadcast and multicast).
  200.        ios2_StatData         - Pointer to a structure in which to place 
  201.                                a snapshot of device statistics. The data
  202.                                area must be long word aligned. This is 
  203.                                only used on calls to the statistics 
  204.                                commands.
  205.        ios2_BufferManagement - The opener places a pointer to a tag list 
  206.                                in this field before calling OpenDevice().
  207.                                Functions pointed to in the tag list are 
  208.                                called by the device when processing 
  209.                                IORequests from the opener. When returned
  210.                                from OpenDevice(), this field contains a
  211.                                pointer to driver-private information 
  212.                                used to access these functions. 
  213.                                See ``Buffer Management'' below for more
  214.                                details.
  215.        
  216.      The flags used with the device on OpenDevice() are (SANA2OPB_xxx):
  217.        
  218.        SANA2OPB_MINE  - Exclusive access to the unit requested.
  219.        SANA2OPB_PROM  - Promiscuous mode requested. Hardware which 
  220.                         supports promiscuous mode allows all packets
  221.                         sent over the wire to be captured whether or not
  222.                         they are addressed to this node.
  223.        
  224.      The flags used during I/O requests are (SANA2IOB_xxx):
  225.        
  226.        SANA2IOB_RAW   - Raw packet read/write requested. Raw packets 
  227.                         should include the entire data-link layer packet.
  228.                         Devices with the same hardware device number 
  229.                         should have the same raw packet format.
  230.        SANA2IOB_BCAST - Broadcast packet (received).
  231.        SANA2IOB_MCAST - Multicast packet (received).
  232.        SANA2IOB_QUICK - Quick IO requested.
  233.   
  234.      
  235.  
  236.  
  237.      Buffer Management
  238.      
  239.      Unlike most other Exec Device drivers, SANA-II drivers have no
  240.      internal buffers. Instead, they read/write to/from an abstract data
  241.      structure allocated by the driver user. The driver accesses these
  242.      buffers only via functions that the driver user provides to the
  243.      driver. The driver user must provide two functions--one copies data
  244.      to the abstract data structure and one copies data from the abstract
  245.      data structure. The driver user can therefore choose the data
  246.      structure used for buffer management by both the driver and driver
  247.      user in order to have efficient memory and CPU usage overall.
  248.      
  249.      The IOSana2Req contains a pointer to data and the length of said
  250.      data. A driver is not allowed to make assumptions about how the data
  251.      is stored. The driver cannot directly manipulate or examine the
  252.      buffer in any manner. The driver can only access the buffer by
  253.      calling the functions provided by the driver user.
  254.      
  255.      Before calling OpenDevice(), the driver user points
  256.      ios2_BufferManagement to a list of tags (defined in
  257.      <devices/sana2.h>) which include pointers to the buffer management
  258.      functions required by the driver (defined below).  The driver will
  259.      fail to open if the driver user does not supply all of the required
  260.      functions.  If the device opens successfully, the driver sets
  261.      ios2_BufferManagement to a value which this opener must use in all
  262.      future calls to the driver.  This ``magic cookie'' is used from
  263.      then on to access these functions (a ``magic cookie'' is a value
  264.      which one software entity passes to another but which is only
  265.      meaningful to one of the software entities).  The driver user may
  266.      not use the ``magic cookie'' in any way--it is for the driver to do
  267.      with as it wishes.  The driver could in theory choose to just copy
  268.      the tag list to driver-owned memory and then parse the list for
  269.      every IORequest, but it is much more efficient for the driver to
  270.      create some sort of table of functions and to point
  271.      ios2_BufferManagement to that table.
  272.           
  273.      The specification currently includes only two tags for the
  274.      OpenDevice() ios2_BufferManagement tag list:
  275.      
  276.      S2_CopyToBuff  - This is a pointer to a function which conforms to 
  277.               the CopyToBuff Autodoc.
  278.      S2_CopyFromBuff - This is a pointer to a function which conforms to
  279.               the CopyFromBuff Autodoc.
  280.      
  281.      Packet Type
  282.      
  283.      Network frames always have a type field associated with them. These
  284.      type fields vary in length, position and meaning by frame type
  285.      (frame types generally correspond one-to-one with hardware types,
  286.      but see ``Ethernet Packet Types'' below). The meanings of the type
  287.      numbers are always carefully defined and every type number is
  288.      registered with some official body. Do not use a type number which
  289.      is not registered for any standard hardware you use or in a manner
  290.      inconsistent with that registration.
  291.      
  292.      The type field allows the SANA-II device driver to fulfill CMD_READs
  293.      based on the type of packet the driver user wants. Multiple
  294.      protocols can therefore run over the same wire using the same driver
  295.      without stepping on each other's toes.
  296.   
  297.      
  298.  
  299.  
  300.      Packet types are specified as a long word. Unfortunately, the type
  301.      field means different things on different wires. Driver users must
  302.      allow their software to be configured with a SANA-II device name,
  303.      unit number and the type number(s) used by the protocol stack with
  304.      each device. This way, if new hardware becomes available, a
  305.      hardware manufacturer can supply a listing of type assignments to
  306.      configure pre-existing software.
  307.      
  308.      Ethernet Packet Types
  309.      
  310.      Ethernet has a special problem with packet types. Two types of
  311.      ethernet frames can be sent over the same wire--ethernet and 802.3. 
  312.      These frames differ in that the Type field of an ethernet frame is
  313.      the Length field of an 802.3 frame. This creates a problem in that
  314.      demultiplexing incoming packets can be cumbersome and inefficient,
  315.      as well as requiring driver users to be aware of the frame type
  316.      used.
  317.      
  318.      All 802.3 frames have numbers less than 1500 in the Type field. The
  319.      only frames with numbers less than 1500 in the type field are 802.3
  320.      frames. SANA-II ethernet drivers abnormally return packets
  321.      contained in ethernet frames when the requested Type falls within
  322.      the 802.3 range--if the Type requested is within the 802.3 range,
  323.      the driver returns the next packet contained within an 802.3 frame,
  324.      regardless of the type specified for the packet within the 802.3
  325.      frame. This requires that there be no more than one driver user
  326.      requesting 802.3 packets and that it do its own interpretation of
  327.      the frames.
  328.      
  329.      ARCNET Frames
  330.      
  331.      ARCNET also has a special problem with framing. ARCNET frames
  332.      consist of a hardware header and a software header. The software
  333.      header is in the data area of the hardware packet, and includes at
  334.      least the protocol ID.
  335.      
  336.      There are two types of software header. Old-style ARCNET software
  337.      headers consist entirely of a one or two byte protocol ID. New
  338.      ARCNET software headers (defined in RFC 1201 and in the paper
  339.      ``ARCNET Packet Header Definition Standard'', Novell, Inc., 1989)
  340.      include more information. They allow more efficient use of ARCNET
  341.      through data link layer fragmentation and reassembly (ARCNET has a
  342.      small Maximum Transmission Unit) and allow sending any size packet up
  343.      to the MTU (rather than requiring that packets of size 253, 254 and
  344.      255 be padded to at least 256 bytes).
  345.      
  346.      SANA-II device drivers for ARCNET should implement the old ARCNET
  347.      packet headers. Driver users which wish to interoperate with
  348.      platforms using the new software headers must add the new fields to
  349.      the data to be sent and must process it for incoming data. A
  350.      SANA-II driver which implemented the data link layer fragmentation
  351.      internally (and advertised a large MTU) could be more efficient than
  352.      requiring the driver user to do it. This would make driver writing
  353.      more difficult and reduce interoperability, but if there is ever a
  354.      demand for that extra performance, a new hardware type may be
  355.      assigned by Commodore for SANA-II ARCNET device drivers which
  356.      implement the new framing.
  357.   
  358.      
  359.  
  360.  
  361.      Addressing
  362.      
  363.      In the SANA-II standard, network hardware addresses are stored in an
  364.      array of n bytes. No meaning is ascribed by the standard to the
  365.      contents of the array.
  366.      
  367.      In case there exists a network which does not have an address field
  368.      consisting of a number of bits not divisible by eight, add pad bits
  369.      at the end of the bit stream. For example, if an address is ten
  370.      bits long it will be stored like this:
  371.      
  372.          98765432 10PPPPPP
  373.          BYTE 0   BYTE 1
  374.      
  375.      Where the numerals are bit numbers and 'P' is a pad (ignored) bit.
  376.      
  377.      Driver users which do not implement the bit shifting necessary to
  378.      use a network with such addressing (if one exists) should at least
  379.      check the number of significant bits in the address field (returned
  380.      from the device's S2_DEVICEQUERY function) to make sure that it is
  381.      evenly divisible by eight.
  382.      
  383.      Driver users will map hardware addresses to protocol addresses in a
  384.      protocol and hardware dependent manner, as described by the relevant
  385.      standards (i.e., RFC 826 for TCP/IP over Ethernet, RFC 1201 or 1051
  386.      for TCP/IP over ARCNET). Some protocols will always use the same
  387.      mapping on all hardware, but other protocols will have particular
  388.      address mapping schemes for some particular hardware and a
  389.      reasonable default for other (unknown) hardware.
  390.      
  391.      Some SANA-II devices will have ``hardware addresses'' which aren't
  392.      really hardware addresses. As an example, consider PPP
  393.      (Point-to-Point Protocol). PPP is a standard for transmitting IP
  394.      packets over a serial line. It uses IP addresses negotiated during
  395.      the establishment of a connection. In a SANA-II driver
  396.      implementation of PPP, the driver would negotiate the address at
  397.      S2_CONFIGINTERFACE. Thus, the address in SrcAddr returned by the
  398.      device on an S2_CONFIGINTERFACE (or in a subsequent
  399.      S2_GETSTATIONADDRESS) will be a protocol address, not a true
  400.      hardware address.
  401.      
  402.      Note: Some hardware always uses a ROM hardware address. Other
  403.      hardware which has a ROM address or is configurable with DIP
  404.      switches may be overridden by software. Some hardware always
  405.      dynamically allocates a new hardware address at initialization. See
  406.      ``Configuration'' for details on how this is handled by driver
  407.      writers and by driver users.
  408.      
  409.      Hardware Type
  410.      
  411.      The HardwareType returned by the device's S2_DEVICEQUERY function is
  412.      necessary for those protocols whose standards require different
  413.      behavior on different hardware. It is also useful for determining
  414.      appropriate packet type numbers to use with the device. The
  415.      HardwareType values already issued for standard network hardware are
  416.      the same as those in RFC 1060 (assigned numbers). Hardware
  417.      developers implementing networks without a SANA-II hardware number
  418.      must contact CATS to have a new hardware type number assigned. 
  419.      Driver users should all have reasonable defaults which can be used
  420.      for hardware with which they are not familiar.
  421.   
  422.      
  423.  
  424.  
  425.      Errors
  426.      
  427.      The SANA-II extended IORequest structure (struct IOSana2Req)
  428.      includes both the ios2_Error and ios2_WireError fields. Driver
  429.      users must always check IOSana2Reqs on return for an error in
  430.      ios2_Error. ios2_Error will be zero if no error occurred, otherwise
  431.      it will contain a value from <exec/errors.h> or <devices/sana2.h>. 
  432.      If there was an error, there may be more specific information in
  433.      ios2_WireError. Drivers are required to fill in the WireError if
  434.      there is an applicable error code.
  435.      
  436.      Error codes are #defined in the ``defined errors'' sections of 
  437.      the file <devices/sana2.h>:
  438.      
  439.      IOSana2Req S2io_Error field (S2ERR_xxx):
  440.      
  441.      S2ERR_NO_RESOURCES  - Insufficient resources available.
  442.      S2ERR_BAD_ARGUMENT  - Noticeably bad argument.
  443.      S2ERR_BAD_STATE     - Command inappropriate for current state.
  444.      S2ERR_BAD_ADDRESS   - Noticeably bad address.
  445.      S2ERR_MTU_EXCEEDED  - Write data too large.
  446.      S2ERR_NOT_SUPPORTED - Command is not supported by this driver. This
  447.                            is similar to IOERR_NOCMD as defined in 
  448.                            <exec/errors.h> but S2ERR_NOT_SUPPORTED 
  449.                            indicates that the requested command is a 
  450.                            valid SANA-II command and that the driver 
  451.                            does not support it because the hardware is 
  452.                            incapable of supporting it (e.g., 
  453.                            S2_MULTICAST). Note that IOERR_NOCMD is still
  454.                            valid for reasons other than a lack of 
  455.                            hardware support (i.e., commands which are 
  456.                            no-ops in a SANA-II driver).
  457.      S2ERR_SOFTWARE      - Software error of some kind.
  458.      S2ERR_OUTOFSERVICE  - When a hardware device is taken off-line, any
  459.                            pending requests are returned with this error.
  460.                             
  461.      See also the standard errors in <exec/errors.h>.
  462.      
  463.      IOSana2Req S2io_WireError field (S2WERR_xxx):
  464.      
  465.      S2WERR_NOT_CONFIGURED  - Command requires unit to be configured.
  466.      S2WERR_UNIT_ONLINE     - Command requires that the unit be off-line.
  467.      S2WERR_UNIT_OFFLINE    - Command requires that the unit be on-line.
  468.      S2WERR_ALREADY_TRACKED - Protocol is already being tracked.
  469.      S2WERR_NOT_TRACKED     - Protocol is not being tracked.
  470.      S2WERR_BUFF_ERROR      - Buffer management function returned an error.
  471.      S2WERR_SRC_ADDRESS     - Problem with the source address field.
  472.      S2WERR_DST_ADDRESS     - Problem with destination address field.
  473.      S2WERR_BAD_BROADCAST   - Problem with an attempt to broadcast.
  474.      S2WERR_BAD_MULTICAST   - Problem with an attempt to multicast.
  475.      S2WERR_MULTICAST_FULL  - Multicast address list full.
  476.      S2WERR_BAD_EVENT       - Event specified is unknown.
  477.      S2WERR_BAD_STATDATA    - The S2IO_StatData pointer or the data it
  478.                               points to failed a sanity check.
  479.      S2WERR_IS_CONFIGURED   - Attempt to reconfigure the unit.
  480.      S2WERR_NULL_POINTER    - A NULL pointer was detected in one of the
  481.                               arguments. S2ERR_BAD_ARGUMENT should always
  482.                               be the S2ERR.
  483.   
  484.      
  485.  
  486.  
  487.      Standard Commands
  488.      
  489.      See the SANA-II Network Device Driver Autodocs for full details on
  490.      each of the SANA-II device commands. Extended commands are
  491.      explained in the sections below.
  492.      
  493.      Many of the Exec device standard commands are no-ops in SANA-II
  494.      devices, but this may not always be the case. For example,
  495.      CMD_RESET might someday be used for dynamically reconfiguring
  496.      hardware. This should present no compatibility problems for
  497.      properly written drivers.
  498.      
  499.      Broadcast and Multicast
  500.      
  501.        S2_ADDMULTICASTADDRESS        S2_MULTICAST
  502.        S2_DELMULTICASTADDRESS        S2_BROADCAST
  503.      
  504.      Some hardware supports broadcast and/or multicast. A broadcast is a
  505.      packet sent to all other machines. A multicast is a packet sent to a
  506.      set of machines. Drivers for hardware which does not allow broadcast
  507.      or multicast will return ios2_Error S2ERR_NOT_SUPPORTED as
  508.      appropriate. 
  509.      
  510.      To send a broadcast, use S2_BROADCAST instead of CMD_WRITE.
  511.      Broadcasts are received just like any other packets (using a
  512.      CMD_READ for the appropriate packet type). 
  513.      
  514.      To send a multicast, use S2_MULTICAST instead of CMD_WRITE. The
  515.      device keeps a list of addresses that want to receive multicasts.
  516.      You add a receiver's address to this list by using
  517.      S2_ADDMULTICASTADDRESS. The receiver then posts a CMD_READ for the
  518.      type of packet to be received. Some SANA-II devices which support
  519.      multicast may have a limit on the number of addresses that can
  520.      simultaneously wait for packets. Always check for an
  521.      S2WERR_MULTICAST_FULL error return when adding a multicast address. 
  522.      
  523.      Note that when the device adds a multicast address, it is usually
  524.      added for all users of the device, not just the driver user which
  525.      called S2_ADDMULTICASTADDRESS. In other words, received multicast
  526.      packets will fill a read request of the appropriate type regardless
  527.      of whether the requesting driver user is the same one which added
  528.      the multicast address. 
  529.      
  530.      In general, driver users should not care how received packets were
  531.      sent (normally or broadcast/multicast), only that it was received.
  532.      If a driver user really must know, however, it can check for
  533.      SANA2IOB_BCAST and/or SANA2IOB_MCAST in the ios2_Flags field.
  534.      
  535.      Drivers should keep a count for the number of opens on a multicast
  536.      address so that they don't actually remove it until it has been
  537.      S2_DELMULTICASTADDRESS'd as many times as it has been
  538.      S2_ADDMULTICASTADDRESS'd.
  539.   
  540.  
  541.  
  542.  
  543.      Stats
  544.  
  545.        S2_TRACKTYPE     S2_GETTYPESTATS      S2_GETGLOBALSTATS
  546.        S2_UNTRACKTYPE   S2_GETSPECIALSTATS   S2_READORPHAN
  547.  
  548.      There are many statistics which may be very important to someone
  549.      trying to debug, tune or optimize a protocol stack, as well as to
  550.      the end user who may need to tune parameters or investigate a
  551.      problem. Some of these statistics can only be kept by the SANA-II
  552.      driver, thus there are several required and optional statistics and
  553.      commands for this purpose.
  554.      
  555.      S2_TRACKTYPE tells the device driver to gather statistics for a
  556.      particular packet type. S2_UNTRACKTYPE tells it to stop (keeping
  557.      statistics by type causes the driver to use additional resources).
  558.      S2_GETTYPESTATS returns any statistics accumulated by the driver for
  559.      a type being tracked (stats are lost when a type is
  560.      S2_UNTRACKTYPE'd). Drivers are required to implement the
  561.      functionality of type tracking. The stats are returned in a struct
  562.      Sana2PacketTypeStats:
  563.      
  564.      struct Sana2PacketTypeStats
  565.      {
  566.        ULONG PacketsSent;
  567.        ULONG PacketsReceived;
  568.        ULONG BytesSent;
  569.        ULONG BytesReceived;
  570.        ULONG PacketsDropped;
  571.      };
  572.      
  573.      PacketsSent     - Number of packets of a particular type sent.
  574.      PacketsReceived - Number of packets of a particular type that
  575.                        satisfied a read command.
  576.      BytesSent       - Number of bytes of data sent in packets of a 
  577.                        particular type.
  578.      BytesReceived   - Number of bytes of data of a particular packet 
  579.                        type that satisfied a read command.
  580.      PacketsDropped  - Number of packets of a particular type that were
  581.                        received while there were no pending reads of that
  582.                        packet type.
  583.      
  584.      S2_GETGLOBALSTATS returns global statistics kept by the driver. 
  585.      Drivers are required to keep all applicable statistics. Since all
  586.      are applicable to most hardware, most drivers will maintain all
  587.      statistics. The stats are returned in a struct Sana2DeviceStats:
  588.      
  589.      struct Sana2DeviceStats
  590.      {
  591.        ULONG PacketsReceived;
  592.        ULONG PacketsSent;
  593.        ULONG BadData;
  594.        ULONG Overruns;
  595.        ULONG UnknownTypesReceived;
  596.        ULONG Reconfigurations;
  597.        struct timeval LastStart;
  598.      };
  599.       
  600.      
  601.  
  602.  
  603.      PacketsReceived     - Number of packets that this unit has received.
  604.      PacketsSent         - Number of packets that this unit has sent.
  605.      BadData             - Number of bad packets received (i.e., hardware
  606.                            CRC failed).
  607.      Overruns            - Number of packets dropped due to insufficient
  608.                            resources available in the network interface.
  609.      UnknownTypeReceived - Number of packets received that had no pending
  610.                            read command with the appropriate packet type.
  611.      Reconfigurations    - Number of network reconfigurations since this 
  612.                            unit was last configured.
  613.      LastStart           - The time when this unit last went on-line.
  614.      
  615.      S2_GETSPECIALSTATS returns any special statistics kept by a
  616.      particular driver. Each new wire type will have a set of
  617.      documented, required statistics for that wire type and a standard
  618.      set of optional statistics for that wire type (optional because they
  619.      might not be available from all hardware). The data returned by
  620.      S2_GETSPECIALSTATS will require wire-specific interpretation. See
  621.      <devices/sana2specialstats.h> for currently defined special
  622.      statistics. The statistics are returned in the following
  623.      structures:
  624.      
  625.      struct Sana2SpecialStatRecord
  626.      {
  627.        ULONG Type;
  628.        ULONG Count;
  629.        char *String;
  630.      };
  631.      
  632.      Type   - Statistic identifier.
  633.      Count  - Statistic itself.
  634.      String - An identifying, null-terminated string for the statistic.
  635.               Should be plain ASCII with no formatting characters.
  636.      
  637.      struct Sana2SpecialStatHeader
  638.      {
  639.        ULONG RecordCountMax;
  640.        ULONG RecordCountSupplied;
  641.        struct Sana2SpecialStatRecord[RecordCountMax];
  642.      };
  643.      
  644.      RecordCountMax      - There is space for this many records into which 
  645.                            statistics may be placed.
  646.      RecordCountSupplied - Number of statistic records supplied.
  647.      
  648.      S2_READORPHAN is not, strictly speaking, a statistical function. It
  649.      is a request to read any packet of a type for which there is no
  650.      outstanding CMD_READ. S2_READORPHAN might be used in the same
  651.      manner as many statistics, though, such as to determine what packet
  652.      types are causing overruns, etc.
  653.   
  654.      
  655.  
  656.  
  657.      Configuration
  658.      
  659.        S2_DEVICEQUERY     S2_CONFIGINTERFACE    S2_GETSTATIONADDRESS
  660.      
  661.      The device driver needs to configure the hardware before using it. 
  662.      The driver user must know some network hardware parameters (hardware
  663.      address and MTU, for example) when using it. These commands address
  664.      those needs.
  665.      
  666.      When a driver user is initialized, it should try to
  667.      S2_CONFIGINTERFACE even though an interface can only be configured
  668.      once and someone else may have done it. Before you call
  669.      S2_CONFIGINTERFACE, first call S2_GETSTATIONADDRESS to determine the
  670.      factory address (if any). Also provide for user-override of the
  671.      factory address (that address may be optional and the user may need
  672.      to override it). When S2_CONFIGINTERFACE returns, check the
  673.      ios2_SrcAddr for the actual address the hardware has been configured
  674.      with. This is because some hardware (or serial line standards such
  675.      as PPP) always dynamically allocates an address at initialization.
  676.      
  677.      Driver users will want to use S2_DEVICEQUERY to determine the MTU
  678.      and other characteristics of the network. The structure returned
  679.      from S2_DEVICEQUERY is defined as:
  680.      
  681.      struct Sana2DeviceQuery
  682.      {
  683.        ULONG SizeAvailable;
  684.        ULONG SizeSupplied;
  685.        ULONG DevQueryFormat;
  686.        ULONG DeviceLevel;
  687.        UWORD AddrFieldSize;
  688.        ULONG MTU;
  689.        ULONG BPS;
  690.        ULONG HardwareType;
  691.      };
  692.      
  693.      SizeAvailable  - Size, in bytes, of the space available in which to
  694.                       place device information. This includes both size 
  695.                       fields.
  696.      SizeSupplied   - Size, in bytes, of the data supplied.
  697.      DevQueryFormat - The format defined here is format 0.
  698.      DeviceLevel    - This spec defines level 0.
  699.      AddrFieldSize  - The number of bits in an interface address.
  700.      MTU            - Maximum Transmission Unit, the size, in bytes, 
  701.                       of the maximum packet size, not including header 
  702.                       and trailer information.
  703.      BPS            - Best guess at the raw line rate for this network 
  704.                       in bits per second.
  705.      HardwareType   - Specifies the type of network hardware the driver 
  706.                       controls.
  707.      
  708.   
  709.      
  710.  
  711.  
  712.      On-line
  713.      
  714.           S2_ONLINE       S2_ONEVENT       S2_OFFLINE
  715.           
  716.      In order to run hardware tests on an otherwise live system, the
  717.      S2_OFFLINE command allows the SANA-II device driver to be ``turned
  718.      off'' until the tests are complete and an ONLINE is sent to the
  719.      driver. S2_ONLINE causes the interface to re-configure and
  720.      re-initialize. Any packets destined for the hardware while the
  721.      device is off-line will be lost. All pending and new requests to the
  722.      driver shall be returned with S2ERR_OUTOFSERVICE when a device is
  723.      off-line.
  724.      
  725.      All driver users must understand that any IO request may return with
  726.      S2ERR_OUTOFSERVICE because the driver is off-line (any other program
  727.      may call S2_OFFLINE to make it so). In such an event, the driver
  728.      will usually want to wait until the unit comes back on-line (for the
  729.      program which called S2_OFFLINE to call S2_ONLINE). It may do this
  730.      by calling S2_ONEVENT to wait for S2EVENT_ONLINE. S2_ONEVENT allows
  731.      the driver user to wait on various events.
  732.      
  733.      A driver must track events, but may not distinguish between some
  734.      types of events. Drivers return S2_ONEVENT with S2_ERR_NOT
  735.      SUPPORTED and S2WERR_BAD_EVENT for unsupported Events. One error
  736.      may cause more than one Event (see below). Errors which seem to
  737.      have been caused by a malformed or unusual request should not
  738.      generally trigger an event.
  739.      
  740.      Event types (S2EVENT_xxx):
  741.      
  742.        ERROR    - Return when any error occurs.
  743.        TX       - Return on any transmit error (always an error).
  744.        RX       - Return on any receive error (always an error).
  745.        ONLINE   - Return when unit goes on-line or return immediately if
  746.                   unit is already on-line (not an error).
  747.        OFFLINE  - Return when unit goes off-line or return immediately if 
  748.                   unit is already off-line (not an error.)
  749.        BUFF     - Return on any buffer management function error (always
  750.                   an error).
  751.        HARDWARE - Return when any hardware error occurs (always an error,
  752.                   may be a TX or RX, too).
  753.        SOFTWARE - Return when any software error occurs (always an error,
  754.                   may be a TX or RX, too).
  755.        
  756.      Acknowledgments
  757.      
  758.      Many people and companies have contributed to the SANA-II Network
  759.      Device Driver Specification. The original SANA-II Autodocs and
  760.      includes were put together by Ray Brand, Perry Kivolowitz (ASDG) and
  761.      Martin Hunt. Those original documents evolved to their current
  762.      state and grew to include this document at the hands of Dale Larson
  763.      and Greg Miller. Brian Jackson and John Orr provided valuable
  764.      editing. Randell Jesup has provided sage advice on several
  765.      occasions. The buffer management callback mechanism was his idea. 
  766.      Dale Luck (GfxBase) and Rick Spanbauer (Ameristar Technologies) have
  767.      provided valuable comments throughout the process. Nicolas Benezan
  768.      (ADONIS) provided many detailed and useful comments on weaknesses in
  769.      late drafts of the specification. Thanks to all the above and the
  770.      numerous others who have contributed with their comments, questions
  771.      and discussions.
  772.   
  773.      
  774.  
  775.  
  776.      Unresolved Issues
  777.      
  778.      Unfortunately, it isn't possible to completely isolate network
  779.      protocols from the hardware they run on. Hardware types and
  780.      addressing both remain somewhat hardware-dependent in spite of our
  781.      efforts. See the ``Packet Type'' section for an explanation of how
  782.      packet types are handled and why protocols cannot be isolated from
  783.      them. See the ``Addressing'' section for an explanation of how
  784.      addressing is handled any why protocols cannot be isolated from it.
  785.      
  786.      Additionally, there are at least two cases where a hardware type has
  787.      multiple framing methods in use (ethernet/802.3 and arcnet/(Novell)
  788.      ``ARCNET Packet Header Definition Standard''). In both cases,
  789.      software which must interoperate with other platforms on this
  790.      hardware may need to be aware of the distinctions and may have to do
  791.      extra processing in order to use the appropriate frame type. See
  792.      the sections on ``Ethernet Packet Types'' and on ``ARCNET frames''
  793.      for more details.
  794.      
  795.